home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / dpp / b16.dm < prev    next >
Text File  |  1997-04-15  |  743b  |  30 lines

  1.  
  2. #  The makefile is designed for the DMAKE utility and Borland C 16 bit
  3.  
  4.  
  5. #  Can't build dpp.exe with 16 bit compilers because dpp takes more then
  6. #  640K to run.  dpp.exe for DOS is built with the WATCOM 32 bit compiler
  7. #  which includes a DOS extender.
  8.  
  9.  
  10. BINDIR = ..\bin
  11. INCDIR = ..\include
  12.  
  13. CLASSES = proto.d istream.d ostream.d token.d arglist.d
  14.  
  15. all:
  16.  
  17. generics.c : generics.h
  18.     $(BINDIR)\dpp $(STRAT) -C -g -c 
  19.  
  20. generics.1 newgens:
  21.     $(BINDIR)\rm -zq generics.*
  22.     $(BINDIR)\dpp $(STRAT) -C -g $(INCDIR)\generics.h -h -p @$(mktmp $(CLASSES:t"\n")\n)
  23.     @echo Done >generics.1
  24.  
  25. clean realclean:
  26.     $(BINDIR)\rm -zq *.obj *.o *.pdb *.err *.exe *.vcp *.ilk *.mdp *.ncb
  27.     $(BINDIR)\rm -zq *.~ *.?~ *.??~ *.{* *.bak #*.*
  28.  
  29.  
  30.